home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-07-01 | 1.6 KB | 54 lines | [TEXT/MPS ] |
- ; File: E16.NoteSeq
- ;
- ;
- ; Copyright Apple Computer, Inc. 1986-90
- ; All Rights Reserved
- ;
- ;
- pitchBend GEQU $0
- tempo GEQU $00000001
- turnNotesOff GEQU $00000002
- jump GEQU $00000003
- setVibratoDepth GEQU $00000004
- programChange GEQU $00000005
- setRegister GEQU $00000006
- ifGo GEQU $00000007
- incRegister GEQU $00000008
- decRegister GEQU $00000009
- midiNoteOff GEQU $0000000A
- midiNoteOn GEQU $0000000B
- midiPolyKey GEQU $0000000C
- midiCtlChange GEQU $0000000D
- midiProgChange GEQU $0000000E
- midiChnlPress GEQU $0000000F
- midiPitchBend GEQU $00000010
- midiSelChnlMode GEQU $00000011
- midiSysExclusive GEQU $00000012
- midiSysCommon GEQU $00000013
- midiSysRealTime GEQU $00000014
- midiSetSysExl GEQU $00000015
- callRoutine GEQU $0000001E
- commandMask GEQU $0000007F
- volumeMask GEQU $0000007F
- chord GEQU $00000080
- val1Mask GEQU $00007F00
- toneMask GEQU $00007F00
- noteMask GEQU $00008000
- lByte GEQU $00FF0000 ; meaning depends on midi command
- durationMask GEQU $07FF0000
- trackMask GEQU $78000000
- delayMask GEQU $80000000
- hByte GEQU $FF000000
- noRoomMidiErr GEQU $1A00
- noCommandErr GEQU $1A01 ; can't understand the current SeqItem
- noRoomErr GEQU $1A02 ; sequence is more than twelve levels deep
- startedErr GEQU $1A03 ; Note Sequencer is already started
- noNoteErr GEQU $1A04 ; can't find the note to be turned off by the current SeqItem
- noStartErr GEQU $1A05 ; Note Sequencer not started yet
- instBndsErr GEQU $1A06 ; Instrument number out of Instrument boundary range
- nsWrongVer GEQU $1A07 ; incompatible versions of NoteSequencer and NoteSynthesizer
- ; offset constants for LocRec
- ocurPhraseItem GEQU 0
- ocurPattItem GEQU 2
- ocurLevel GEQU 4
-